1   //==============================================================================
2   // file :       NewsInfo.java
3   // project:     East Networks News System
4   //
5   // last change: date:       $Date: 2003/09/10 09:28:37 $
6   //              by:         $Author: bitiboy $
7   //              revision:   $Revision: 1.1 $
8   //------------------------------------------------------------------------------
9   // copyright:   GNU GPL Software License (see class documentation)
10  //==============================================================================
11  package net.eastol.news.jibx.bean;
12  
13  
14  /*
15   * $Id: NewsInfo.java,v 1.1 2003/09/10 09:28:37 bitiboy Exp $
16   *
17   * Copyright 2003 Acai Software All Rights Reserved.
18   *
19   * This file NewsInfo.java is part of the East Networks News System.
20  
21   * The East Networks News System is free software; you can redistribute it and/or modify
22   * it under the terms of the GNU General Public License as published by
23   * the Free Software Foundation; either version 2 of the License, or
24   * (at your option) any later version.
25  
26   * East Networks News System is distributed in the hope that it will be useful,
27   * but WITHOUT ANY WARRANTY; without even the implied warranty of
28   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
29   * GNU General Public License for more details.
30  
31   * You should have received a copy of the GNU General Public License
32   * along with the East Networks News System; if not, write to the Free Software
33   * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
34  
35   * http://www.justhis.com http://ejb.cn
36   * CONTACT: email = webmaster@justhis.com superaxis@sohu.com
37   */
38  import java.util.ArrayList;
39  import java.util.Collection;
40  
41  
42  /*
43   * TODO
44   * @author <a href="http://blog.ejb.cn">acai</a>
45   *
46   * @version $Revision: 1.1 $
47   */
48  public class NewsInfo {
49      //~ Instance fields --------------------------------------------------------
50  
51      /*** TODO */
52      private ArrayList dayHotNews;
53  
54      /*** TODO */
55      private ArrayList hotNews;
56  
57      /*** TODO */
58      private ArrayList weekHotNews;
59  
60      //~ Constructors -----------------------------------------------------------
61  
62      public NewsInfo() {
63          super();
64  
65          
66      }
67  
68      //~ Methods ----------------------------------------------------------------
69  
70      /***
71       * TODO
72       *
73       * @param c TODO
74       */
75      public void setDayHotNews(Collection c) {
76          dayHotNews = new ArrayList(c);
77      }
78  
79      /***
80       * @return TODO
81       */
82      public ArrayList getDayHotNews() {
83          return dayHotNews;
84      }
85  
86      /***
87       * TODO
88       *
89       * @param c TODO
90       */
91      public void setHotNews(Collection c) {
92          hotNews = new ArrayList(c);
93      }
94  
95      /***
96       * @return TODO
97       */
98      public ArrayList getHotNews() {
99          return hotNews;
100     }
101 
102     /***
103      * TODO
104      *
105      * @param c TODO
106      */
107     public void setWeekHotNews(Collection c) {
108         weekHotNews = new ArrayList(c);
109     }
110 
111     /***
112      * @return TODO
113      */
114     public ArrayList getWeekHotNews() {
115         return weekHotNews;
116     }
117 }
118 
119 
120 /*
121  * $Log: NewsInfo.java,v $
122  * Revision 1.1  2003/09/10 09:28:37  bitiboy
123  * *** empty log message ***
124  *
125  *
126 */
This page was automatically generated by Maven